e0cd1e088170121beb61373e3ae1659f464e0a8b,play-application/app/com/gopivotal/cloudfoundry/test/ApplicationController.java,ApplicationController,systemProperties,#,55

Before Change


    }

    public Result systemProperties() {
        return Controller.ok(Json.toJson(this.runtimeUtils.systemProperties()));
    }

}

After Change


    }

    public Result systemProperties() {
        return toResult(this.runtimeUtils.systemProperties());
    }

    private static <V> Result toResult(V value) {